faa8b010a0a13aa43d3eca471cdf50157e6672b9,drools-verifier/src/main/java/org/drools/verifier/report/html/ReportModeller.java,ReportModeller,copyFile,#String#String#,54
Before Change
String filename) throws IOException {
zout.putNextEntry( new JarEntry( destination + File.separator + filename ) );
File source = new File( HTMLReportWriter.class.getResource( filename ).getFile() );
InputStream in = new FileInputStream( source );
// Transfer bytes from in to out
After Change
String filename) throws IOException {
zout.putNextEntry( new JarEntry( destination + File.separator + filename ) );
InputStream in = HTMLReportWriter.class.getResourceAsStream( filename );
// Transfer bytes from in to out
byte[] buf = new byte[1024];